home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / dosource.c < prev    next >
C/C++ Source or Header  |  1995-03-23  |  228b  |  13 lines

  1. #include "kiss.h"
  2.  
  3. int dosource (Stringstack s)
  4. {
  5.     if (s.nstr != 2 || getopt (s.nstr, s.str, "h") != -1)
  6.     return (warning ("Bad comandline.\n"
  7.              "Usage: source file\n"));
  8.  
  9.     sourcefile (s.str [1]);
  10.     return (0);
  11. }
  12.              
  13.